diff options
| author | Dax Raad <[email protected]> | 2025-08-15 19:29:24 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-08-15 19:29:42 -0400 |
| commit | 07cf8847fb1908ff5dc47a771f57d23926baa1ce (patch) | |
| tree | aef73a8ac42e755404cb56107137a7fc4eff3ffd /cloud/app/src/routes/[...404].tsx | |
| parent | 650e67f1dfd4790152c70864da6c1ade4884ab58 (diff) | |
| download | opencode-07cf8847fb1908ff5dc47a771f57d23926baa1ce.tar.gz opencode-07cf8847fb1908ff5dc47a771f57d23926baa1ce.zip | |
wip: cloud stuff
Diffstat (limited to 'cloud/app/src/routes/[...404].tsx')
| -rw-r--r-- | cloud/app/src/routes/[...404].tsx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cloud/app/src/routes/[...404].tsx b/cloud/app/src/routes/[...404].tsx new file mode 100644 index 000000000..4ea71ec7f --- /dev/null +++ b/cloud/app/src/routes/[...404].tsx @@ -0,0 +1,19 @@ +import { Title } from "@solidjs/meta"; +import { HttpStatusCode } from "@solidjs/start"; + +export default function NotFound() { + return ( + <main> + <Title>Not Found</Title> + <HttpStatusCode code={404} /> + <h1>Page Not Found</h1> + <p> + Visit{" "} + <a href="https://start.solidjs.com" target="_blank"> + start.solidjs.com + </a>{" "} + to learn how to build SolidStart apps. + </p> + </main> + ); +} |
